home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / bc_ti.zip / TI816.ASC < prev    next >
Text File  |  1992-02-25  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  Turbo C++, Borland C++                           NUMBER  :  816
  9.   VERSION  :  All
  10.        OS  :  DOS
  11.      DATE  :  February 25, 1992                                  PAGE  :  1/1
  12.  
  13.     TITLE  :  Member Function Attributes Table
  14.  
  15.  
  16.  
  17.  
  18.   The table below summarizes the characteristics of constructors,
  19.   destructors, conversion functions, and other member and friend
  20.   functions available in C++ classes.
  21.  
  22.                  |           | can be  | return |    member     | generated
  23.                  | inherited | virtual | type?  |   or friend   | by default
  24.   --------------------------------------------------------------------------
  25.   constructor    | no        | no      | no     | member        | yes
  26.   destructor     | no        | yes     | no     | member        | yes
  27.   conversion     | yes       | yes     | no     | member        | no
  28.   =              | no        | yes     | yes    | member        | yes
  29.   ()             | yes       | yes     | yes    | member        | no
  30.   []             | yes       | yes     | yes    | member        | no
  31.   ->             | yes       | yes     | yes    | member        | no
  32.   op=            | yes       | yes     | yes    | either        | no
  33.   new            | yes       | no      | void * | static member | no
  34.   delete         | yes       | no      | void   | static member | no
  35.   other operator | yes       | yes     | yes    | either        | no
  36.   other member   | yes       | yes     | yes    | member        | no
  37.   friend         | no        | no      | yes    | friend        | no
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.